added SSCLI 1.0
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2008 / CSWinFormSingleInstanceApp / MainForm.Designer.cs
blobc78041c72d0bb8ce48f3ea0dcb6f298cee7f45f8
1 namespace CSWinFormSingleInstanceApp
3 partial class MainForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.labelWelcomeMsg = new System.Windows.Forms.Label();
32 this.buttonLogoff = new System.Windows.Forms.Button();
33 this.labelUserStatus = new System.Windows.Forms.Label();
34 this.SuspendLayout();
35 //
36 // labelWelcomeMsg
37 //
38 this.labelWelcomeMsg.AutoSize = true;
39 this.labelWelcomeMsg.Location = new System.Drawing.Point(12, 9);
40 this.labelWelcomeMsg.Name = "labelWelcomeMsg";
41 this.labelWelcomeMsg.Size = new System.Drawing.Size(0, 13);
42 this.labelWelcomeMsg.TabIndex = 0;
43 //
44 // buttonLogoff
45 //
46 this.buttonLogoff.Location = new System.Drawing.Point(197, 201);
47 this.buttonLogoff.Name = "buttonLogoff";
48 this.buttonLogoff.Size = new System.Drawing.Size(75, 23);
49 this.buttonLogoff.TabIndex = 1;
50 this.buttonLogoff.Text = "Logoff";
51 this.buttonLogoff.UseVisualStyleBackColor = true;
52 this.buttonLogoff.Click += new System.EventHandler(this.buttonLogoff_Click);
53 //
54 // labelUserStatus
55 //
56 this.labelUserStatus.AutoSize = true;
57 this.labelUserStatus.Location = new System.Drawing.Point(12, 33);
58 this.labelUserStatus.Name = "labelUserStatus";
59 this.labelUserStatus.Size = new System.Drawing.Size(35, 13);
60 this.labelUserStatus.TabIndex = 2;
61 this.labelUserStatus.Text = "label1";
62 //
63 // MainForm
64 //
65 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
66 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
67 this.ClientSize = new System.Drawing.Size(284, 262);
68 this.Controls.Add(this.labelUserStatus);
69 this.Controls.Add(this.buttonLogoff);
70 this.Controls.Add(this.labelWelcomeMsg);
71 this.Name = "MainForm";
72 this.Text = "MainForm";
73 this.ResumeLayout(false);
74 this.PerformLayout();
78 #endregion
80 private System.Windows.Forms.Label labelWelcomeMsg;
81 private System.Windows.Forms.Button buttonLogoff;
82 private System.Windows.Forms.Label labelUserStatus;